home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.txt / 000311_fdc@panix.com_Wed Feb 10 15:31:33 2010.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader2.panix.com!panix!not-for-mail
  2. From: Frank Da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: C-Kermit and u-boot
  5. Date: Wed, 10 Feb 2010 20:30:49 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 56
  8. Message-ID: <slrnhn65rp.shk.fdc@panix1.panix.com>
  9. References: <hkuem2$b0f$1@news.onet.pl>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix1.panix.com
  12. X-Trace: reader2.panix.com 1265833849 7337 166.84.1.1 (10 Feb 2010 20:30:49 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Wed, 10 Feb 2010 20:30:49 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15911
  17.  
  18. On 2010-02-10, Adam Mikuta <adammikutaWytnij@gmail.wyt.nij.com> wrote:
  19. : Hi.
  20. :
  21. : I'm trying to send kernel image to u-boot bootloader using C-Kermit.
  22. : When I'm doing it on windows with Kermit 95 and configuration:
  23. :
  24. : set line /dev/ttyS0
  25. : set speed 115200
  26. : set carrier-watch off
  27. : set handshake none
  28. : set flow-control none
  29. : robust
  30. : set file type bin
  31. : set file name lit
  32. : set rec pack 1000
  33. : set send pack 1000
  34. : set window 5
  35. :
  36. : Everithing works fine. But when I use the same configuration on linux[1]
  37. : I got:
  38. :
  39. : *************************
  40. : SEND-class command failed.
  41. :  Packets sent: 2
  42. :  Retransmissions: 11
  43. :  Timeouts: 0
  44. :  Damaged packets: 0
  45. :  Fatal Kermit Protocol Error: Too many retries
  46. :
  47. : HINTS... If the preceding error message does not explain the failure:
  48. :  . Try changing the remote Kermit's FLOW-CONTROL setting.
  49. :  . Increase the retry limit (see HELP SET RETRY).
  50. :  . Try it again with SET STREAMING OFF.
  51. :  . Try it again with SET PARITY SPACE.
  52. :  . As a last resort, give a ROBUST command and try again.
  53. : Also:
  54. :  . Be sure the source file has read permission.
  55. :  . Be sure the target directory has write permission.
  56. : (Use SET HINTS OFF to suppress hints.)
  57. : *************************
  58. :
  59. : I did many tryes witch diffrent configurations and I have no idea what
  60. : can be the reason...
  61. :
  62. : [1] System is Ubuntu in virtualbox with Kermit 8.0.211.
  63. :
  64. The software may be the same, but the computers, serial ports, and
  65. serial drivers are different.  Clearly the packets are getting garbled
  66. in the second case.  I can see that the hints are not very useful;
  67. they should be more context-sensitive (since they know what the local
  68. flow control is, and they know that streaming is not in effect).
  69.  
  70. My first suggestion would be to try a lower speed and/or shorter
  71. packets.
  72.  
  73. - Frank